-
-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
zarr.array
from from an existing zarr.Array
#2622
zarr.array
from from an existing zarr.Array
#2622
Conversation
# Conflicts: # tests/test_array.py
Do we also want concurrency for different chunk sizes? |
That would be nice, if the chunk sizes are somewhat compatible, i.e. one is a multiple of the other. |
if you are trying to write |
one question to answer here is what "auto" means for chunks if the user passes in a chunked array, but they want to use We might want to use a separate value that means "copy the chunks this object already has", which is distinct from "generate some chunks using the chunking heuristics". maybe something like |
Good point! I like the idea of distinguishing between |
…reation-from-other-zarr # Conflicts: # src/zarr/core/array.py
# Conflicts: # src/zarr/api/asynchronous.py # src/zarr/api/synchronous.py # src/zarr/core/array.py # tests/test_indexing.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is ready. @d-v-b what do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good, thanks @brokkoli71
zarr.Array
#2410added concurrent streaming of source array into new array
TODO: